home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48hor1 / modebrow.txt < prev    next >
Text File  |  1995-03-31  |  1KB  |  41 lines

  1. Mode Browser, by Bill Wickes 
  2.  
  3. Below is the code for modes browser I demonstrated at the Philly meeting. 
  4. Executing this object creates an interactive modes display that displays most 
  5. HP-48 flag-controlled modes and their current states.  The display shows seven 
  6. modes at a time, with a pointer in the leftmost column that "selects" one mode 
  7. and moves through the catalog.  You can move the selection pointer with the 
  8. arrow keys, or by pressing one of the menu keys  
  9.  
  10.                MATH   PLOT   I/O   TIME   DISP   SYS 
  11.  
  12. each of whichs jumps to a block of modes related to the key label. 
  13.  
  14. Other keys are defined as follows: 
  15.  
  16.     [down-arrow]   Moves the pointer to the next mode. 
  17.  
  18.     [up-arrow]     Moves the pointer to the previous mode. 
  19.  
  20.     [left][down] Moves the pointer down one page. 
  21.  
  22.     [right][down] Moves the pointer to the last entry. 
  23.  
  24.     [left][up] Moves the pointer up one page. 
  25.  
  26.     [right][up] Moves the pointer to the first entry. 
  27.  
  28.     [ENTER] Enters the (first) flag number of the selected mode, tagged with 
  29.             the mode name (visible when you exit the browser). 
  30.  
  31.     [+/-]    Toggles the selected mode to its next state. 
  32.  
  33.     [right][OFF] Turns the 48 off. 
  34.  
  35.     [ATTN]  Exits the browser. 
  36.  
  37. After downloading the string to your HP 48, use ASC-> to create the executable 
  38. object. 
  39.  
  40. [Note: Also see UFLAGS on this disk: a User Flags utility.  -jkh-] 
  41.